home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland Pascal with Objects 7.0 / TVDEMO.ZIP / MKRDEMO.BAT < prev    next >
DOS Batch File  |  1992-10-27  |  1KB  |  45 lines

  1. ECHO OFF
  2. REM ===========================================================
  3. REM This batch file generates TVRDEMO.EXE, which is an overlaid
  4. REM version TVDEMO that also uses resource files.
  5. REM ===========================================================
  6.  
  7. REM Compile the program which generates the resource file...
  8. TPC /m/l genrdemo
  9. if errorlevel 1 goto fail
  10. GENRDEMO
  11. if errorlevel 1 goto fail
  12.  
  13. REM ===========================================================
  14. REM To compile this demo with debug information, use the
  15. REM following line:
  16. REM TPC /m/v/l tvrdemo
  17.  
  18. REM Or use the following line to compile without debug info:
  19. TPC /m/l tvrdemo
  20.  
  21. if errorlevel 1 goto fail
  22.  
  23. REM ===========================================================
  24. REM To generate a Turbo Debugger .TDS file, use the command
  25. REM line above to generate debug info, and remove the REMs
  26. REM from the following 2 lines:
  27. REM tdstrip -s tvrdemo
  28. REM touch tvrdemo.tds
  29.  
  30. if errorlevel 1 goto fail
  31.  
  32. REM ===========================================================
  33. REM Use the DOS COPY command to append the overlay file and
  34. REM the resource file to the end of the EXE file.  You must
  35. REM specify the /B (binary) option for the COPY command.
  36. COPY /B TVRDEMO.EXE+TVRDEMO.OVR+TVRDEMO.TVR TVRDEMO.EXE
  37. DEL TVRDEMO.TVR
  38. DEL TVRDEMO.OVR
  39. goto success
  40.  
  41. :fail
  42. echo Error encountered building TVRDEMO.EXE
  43.  
  44. :success
  45.